home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJTST111.ZIP / tests / t13.c < prev    next >
C/C++ Source or Header  |  1993-07-24  |  186b  |  13 lines

  1. main()
  2. {
  3.   int i;
  4.   printf("should take ten seconds (250 ms each)\n");
  5.   for (i=0; i<40; i++)
  6.   {
  7.     write(1, "x", 1);
  8.     usleep(250000);
  9.   }
  10.   printf("\n");
  11.   return 0;
  12. }
  13.